home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interplay's Learn to Program Basic (Review Copy)
/
Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO
/
pc
/
ltpbasic
/
exercise
/
backward.bas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1998-04-07
|
171 b
|
12 lines
cls
print "Please enter your name: ";
input name$
print
print "Your name spelled backwards is: "
print
for X = len(name$) to 1 step -1
print mid$(name$,X,1);
next X
end